home *** CD-ROM | disk | FTP | other *** search
/ Acorn User: China / Acorn User China CD-ROM (UK) (Disc A) / Acorn User China CD-ROM (UK) (Disc A).bin / HENSA / MISC / TORNADO / TNDEMO2.ZIP / Facts < prev    next >
Encoding:
Text File  |  1996-05-15  |  757 b   |  18 lines

  1. Some little boring things about tornado:
  2.  
  3. * Everything's hand-coded in assembler
  4.  
  5. * The kernel is around 9k in length, and of that 2.9% is Data, 19.3% is Text
  6. and 77.8% is pure ARM assembler, reflecting well tornado's commitment to
  7. give you useful error messages and plenty of functionality for the RAM space
  8. used. Incidentally, there are also 38 data labels and 117 code/branch labels.
  9.  
  10. * The kernel takes nearly three seconds to assemble
  11.  
  12. * The kernel is assembled using BBC Basic's assembler
  13.  
  14. * The kernel is assembled in a three pass manner rather than two. This allows
  15. the Basic assembling code to make optimisations, giving you yet more
  16. functionality to RAM space used as well as greater speed.
  17.  
  18. * The kernel's source Basic program is nearly 45k long.